home *** CD-ROM | disk | FTP | other *** search
- ;--------------------------------------------------------------------------
- ; The DESQview "sleep" function added by N2GTE
- ;--------------------------------------------------------------------------
-
- DESQview:
-
- IF present_dv
-
- PUSH AX ; save important regs
- PUSH BX
- PUSH CX
- PUSH SI
-
- MOV AX, 1000H ; set the DESQview call
- INT 15H ; call it
-
- POP SI ; retrieve important regs
- POP CX
- POP BX
- POP AX
- RET
-
- ENDIF